From 1e6d1e90a21c30eb1f4700cd025f3f75152ac228 Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Tue, 18 Oct 2005 17:45:50 +0100 Subject: [PATCH] Fix call to getVCpuCount for dom0. Signed-off-by: Ewan Mellor --- tools/python/xen/xend/XendDomain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xend/XendDomain.py b/tools/python/xen/xend/XendDomain.py index 802c53f689..3046c7eece 100644 --- a/tools/python/xen/xend/XendDomain.py +++ b/tools/python/xen/xend/XendDomain.py @@ -141,7 +141,7 @@ class XendDomain: # target == 0 means use all processors if target > 0: - self.setVCpuCount(target) + dom0.setVCpuCount(target) def _add_domain(self, info): -- 2.30.2